Order class represents an instance of an order. ActiveTick maintains a real-time list of Order objects for all open orders which are available to all trading systems. Trading systems could also create new Order objects, and submit them to the trading broker for execution.
Order
getActionType() | The getActionType method returns order's action type such as buy or sell. |
getFilledQuantity() | The getFilledQuantity method returns order's quantity that has been filled by partial executions. |
getLimitPrice() | The getLimitPrice method returns order's limit price. |
getOrderId() | The getOrderId method returns order's orderId. |
getOrderType() | The getOrderType method returns order's type identifying the type such as market, limit, etc. |
getQuantity() | The getQuantity method returns order's quantity. |
getStatusType() | The getStatusType method returns order's status type identifying the state of the order. |
getStopPrice() | The getStopPrice method returns order's stop price. |
getSymbol() | The getSymbol method returns order's symbol. |
getTifType() | The getTifType method returns order's time-in-force type identifying order's expiration type. |
setActionType(actionType) | The setActionType method sets order's action type such as buy or sell. |
setLimitPrice(limitPrice) | The setLimitPrice method sets the limit price for the order. |
setOrderId(orderId) | The setOrderId method sets the orderId for the order. |
setOrderType(orderType) | The setOrderType method sets order's type such as market or limit type. |
setQuantity(quantity) | The setQuatity method sets order's quantity of how many shares to buy or sell. |
setStopPrice(stopPrice) | The setStopPrice method sets the stop price for the order. |
setSymbol(symbol) | The setSymbol method sets order's symbol. |
setTifType(tifType) | The setTifType method sets order's time-in-force order expiration. |
Copyright © 2006-2009 ActiveTick LLC